home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / batch / tsbat36.zip / LINK1.BAT < prev    next >
DOS Batch File  |  1989-10-31  |  542b  |  19 lines

  1. echo off
  2. echo A Simple demonstration how to link batch files
  3. echo Does not require MsDos 3.3 like the call command does
  4. echo By Prof. Timo Salmi, ts@chyde.uwasa.fi, 31-Oct-89
  5. echo .
  6. echo off
  7.  
  8. rem Show where we are now
  9. echo link1.bat first item
  10.  
  11. rem Perform another bacth
  12. rem If necessary, /e: can be used to increase the environment space
  13. rem Switch /c tells to perform link2 and then return here
  14. %comspec% /e:1024 /c link2
  15.  
  16. rem Demonstrate that the rest of this batch is really executed
  17. echo link1.bat second item
  18. echo on
  19.